home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / DTP / DTP_TEX / H219.ZIP / DVIPSSRC.ZIP / dvips / resident.c < prev    next >
C/C++ Source or Header  |  1993-04-25  |  25KB  |  936 lines

  1. /*   For use with emTeX set FONTPATH to "TEXTFM"
  2.  */
  3. #ifndef FONTPATH
  4. #define FONTPATH "TEXFONTS"
  5. #endif
  6.  
  7. /*
  8.  *   This code reads in and handles the defaults for the program from the
  9.  *   file config.sw.  This entire file is a bit kludgy, sorry.
  10.  */
  11. #include "dvips.h" /* The copyright notice in that file is included too! */
  12. #include "paths.h"
  13. /*
  14.  *   This is the structure definition for resident fonts.  We use
  15.  *   a small and simple hash table to handle these.  We don't need
  16.  *   a big hash table.
  17.  */
  18. struct resfont *reshash[RESHASHPRIME] ;
  19. /*
  20.  *   These are the external routines we use.
  21.  */
  22. extern void error() ;
  23. extern integer scalewidth() ;
  24. extern int tfmload() ;
  25. extern FILE *search() ;
  26. extern shalfword pkbyte() ;
  27. extern integer pkquad() ;
  28. extern integer pktrio() ;
  29. extern Boolean pkopen() ;
  30. extern char *getenv() ;
  31. extern char *newstring() ;
  32. extern int add_header() ;
  33. extern int add_name() ;
  34. extern char *get_name() ;
  35. extern int system() ;
  36. extern void handlepapersize() ;
  37. extern void checkstrings() ;
  38. void getpsinfo() ;
  39. extern void *revlist() ;
  40. /*
  41.  *   These are the external variables we use.
  42.  */
  43. #ifdef DEBUG
  44. extern integer debug_flag;
  45. #endif  /* DEBUG */
  46. extern integer pagecopies ;
  47. extern int overridemag ;
  48. extern long bytesleft ;
  49. extern quarterword *raster ;
  50. extern FILE *pkfile ;
  51. extern char *oname ;
  52. extern integer swmem, fontmem ;
  53. extern char *tfmpath, *pictpath ;
  54. extern char *pkpath ;
  55. extern char *vfpath ;
  56. extern char *figpath ;
  57. extern char *configpath ;
  58. extern Boolean noenv ;
  59. #ifdef SEARCH_SUBDIRECTORIES
  60. extern char *fontsubdirpath ;
  61. #endif
  62. #ifdef FONTLIB
  63. extern char *flipath, *fliname ;
  64. #endif
  65. extern char *headerpath ;
  66. extern char *paperfmt ; 
  67. extern char *nextstring ;
  68. extern char *maxstring ;
  69. extern char *warningmsg ;
  70. extern Boolean disablecomments ;
  71. extern Boolean compressed ;
  72. extern int quiet ;
  73. extern int filter ;
  74. extern Boolean reverse ;
  75. extern Boolean usesPSfonts ;
  76. extern Boolean nosmallchars ;
  77. extern Boolean removecomments ;
  78. extern Boolean safetyenclose ;
  79. extern Boolean dopprescan ;
  80. extern integer maxsecsize ;
  81. extern integer mag ;
  82. extern Boolean sepfiles ;
  83. extern int actualdpi ;
  84. extern int vactualdpi ;
  85. extern int maxdrift ;
  86. extern int vmaxdrift ;
  87. extern char *printer ;
  88. extern char *mfmode ;
  89. extern Boolean sendcontrolD ;
  90. extern int lastresortsizes[] ;
  91. extern integer hoff, voff ;
  92. extern struct papsiz *papsizes ;
  93. /*
  94.  *   To maintain a list of document fonts, we use the following
  95.  *   pointer.
  96.  */
  97. struct header_list *ps_fonts_used ;
  98. /*
  99.  *   Our hash routine.
  100.  */
  101. int
  102. hash(s)
  103.    char *s ;
  104. {
  105.    int h = 12 ;
  106.  
  107.    while (*s != 0)
  108.       h = (h + h + *s++) % RESHASHPRIME ;
  109.    return(h) ;
  110. }
  111. /*
  112.  *   Reverse the hash chains.
  113.  */
  114. void
  115. revpslists() {
  116.    register int i ;
  117.    for (i=0; i<RESHASHPRIME; i++)
  118.       reshash[i] = (struct resfont *)revlist(reshash[i]) ;
  119. }
  120. /*
  121.  *   cleanres() marks all resident fonts as not being yet sent.
  122.  */
  123. void
  124. cleanres() {
  125.    register int i ;
  126.    register struct resfont *p ;
  127.    for (i=0; i<RESHASHPRIME; i++)
  128.       for (p=reshash[i]; p; p=p->next)
  129.          p->sent = 0 ;
  130. }
  131. /*
  132.  *   The routine that looks up a font name.
  133.  */
  134. struct resfont *
  135. lookup(name)
  136.    char *name ;
  137. {
  138.    struct resfont *p ;
  139.  
  140.    for (p=reshash[hash(name)]; p!=NULL; p=p->next)
  141.       if (strcmp(p->Keyname, name)==0)
  142.          return(p) ;
  143.    return(NULL) ;
  144. }
  145. /*
  146.  *   This routine adds an entry.
  147.  */
  148. void
  149. add_entry(TeXname, PSname, specinfo, downloadinfo)
  150.    char *TeXname, *PSname, *specinfo, *downloadinfo ;
  151. {
  152.    struct resfont *p ;
  153.    int h ;
  154.  
  155.    if (PSname == NULL)
  156.       PSname = TeXname ;
  157.    p = (struct resfont *)mymalloc((integer)sizeof(struct resfont)) ;
  158.    p->Keyname = TeXname ;
  159.    p->PSname = PSname ;
  160.    p->TeXname = TeXname ;
  161.    p->specialinstructions = specinfo ;
  162.    if (downloadinfo && *downloadinfo)
  163.       p->downloadheader = downloadinfo ;
  164.    else
  165.       p->downloadheader = 0 ;
  166.    h = hash(TeXname) ;
  167.    p->next = reshash[h] ;
  168.    p->sent = 0 ;
  169.    reshash[h] = p ;
  170. }
  171. /*
  172.  *   Now our residentfont routine.  Returns the number of characters in
  173.  *   this font, based on the TFM file.
  174.  */
  175. extern char *infont ;
  176. int
  177. residentfont(curfnt)
  178.         register fontdesctype *curfnt ;
  179. {
  180.    register shalfword i ;
  181.    struct resfont *p ;
  182.  
  183. /*
  184.  *   First we determine if we can find this font in the resident list.
  185.  */
  186.    if (*curfnt->area)
  187.       return 0 ; /* resident fonts never have a nonstandard font area */
  188.    if ((p=lookup(curfnt->name))==NULL)
  189.       return 0 ;
  190. /*
  191.  *   We clear out some pointers:
  192.  */
  193. #ifdef DEBUG
  194.    if (dd(D_FONTS))
  195.         (void)fprintf(stderr,"Font %s <%s> is resident.\n",
  196.                                      curfnt->name, p->PSname) ;
  197. #endif  /* DEBUG */
  198.    curfnt->resfont = p ;
  199.    curfnt->name = p->TeXname ;
  200.    for (i=0; i<256; i++) {
  201.       curfnt->chardesc[i].TFMwidth = 0 ;
  202.       curfnt->chardesc[i].packptr = NULL ;
  203.       curfnt->chardesc[i].pixelwidth = 0 ;
  204.       curfnt->chardesc[i].flags = 0 ;
  205.    }
  206.    add_name(p->PSname, &ps_fonts_used) ;
  207. /*
  208.  *   We include the font here.  But we only should need to include the
  209.  *   font if we have a stupid spooler; smart spoolers should be able
  210.  *   to supply it automatically.
  211.  */
  212.    if (p->downloadheader) {
  213.       char *cp = p->downloadheader ;
  214.       char *q ;
  215.  
  216.       infont = p->PSname ;
  217.       while (1) {
  218.          q = cp ;
  219.          while (*cp && *cp != ' ')
  220.             cp++ ;
  221.          if (*cp) {
  222.             *cp = 0 ;
  223.             add_header(q) ;
  224.             *cp++ = ' ' ;
  225.          } else {
  226.             add_header(q) ;
  227.             break ;
  228.          }
  229.          infont = 0 ;
  230.       }
  231.       infont = 0 ;
  232.    }
  233.    i = tfmload(curfnt) ;
  234.    if (i < 0)
  235.       i = 1 ;
  236.    usesPSfonts = 1 ;
  237.    return(i) ;
  238. }
  239. #define INLINE_SIZE (500)
  240. static char was_inline[INLINE_SIZE] ;
  241. void
  242. bad_config() {
  243.    extern void exit() ;
  244.  
  245.    error("Error in config file:") ;
  246.    (void)fprintf(stderr, "%s\n", was_inline) ;
  247.    exit(1) ;
  248. }
  249. /*
  250.  *   Get environment variables! These override entries in ./config.h.
  251.  *   We substitute everything of the form ::, ^: or :$ with default,
  252.  *   so a user can easily build on to the existing paths.
  253.  */
  254. static char *getpath(who, what)
  255. char *who, *what ;
  256. {
  257.    if (who) {
  258.       register char *pp, *qq ;
  259.       int lastsep = 1 ;
  260.  
  261.       for (pp=nextstring, qq=who; *qq;) {
  262.          if (*qq == PATHSEP) {
  263.             if (lastsep) {
  264.                strcpy(pp, what) ;
  265.                pp = pp + strlen(pp) ;
  266.             }
  267.             lastsep = 1 ;
  268.          } else
  269.             lastsep = 0 ;
  270.          *pp++ = *qq++ ;
  271.       }
  272.       if (lastsep) {
  273.          strcpy(pp, what) ;
  274.          pp = pp + strlen(pp) ;
  275.       }
  276.       *pp = 0 ;
  277.       qq = nextstring ;
  278.       nextstring = pp + 1 ;
  279.       return qq ;
  280.    } else
  281.       return what ;
  282. }
  283. /*
  284.  *   We use this function so we can support strings delimited by
  285.  *   double quotes with spaces in them.  We also accept strings
  286.  *   with spaces in them, but kill off any spaces at the end.
  287.  */
  288. char *configstring(s, nullok)
  289. char *s ;
  290. int nullok ;
  291. {
  292.    char tstr[300] ;
  293.    char *p = tstr ;
  294.  
  295.    while (*s && *s <= ' ')
  296.       s++ ;
  297.    if (*s == '"') {
  298.       s++ ;
  299.       while (*s != 10 && *s != 0 && *s != '"' && p < tstr+290)
  300.          *p++ = *s++ ;
  301.    } else {
  302.       while (*s && p < tstr+290)
  303.          *p++ = *s++ ;
  304.       while (*(p-1) <= ' ' && p > tstr)
  305.          p-- ;
  306.    }
  307.    *p = 0 ;
  308.    if (p == tstr && ! nullok)
  309.       bad_config() ;
  310.    return newstring(tstr) ;
  311. }
  312. /*
  313.  *   Now we have the getdefaults routine.
  314.  */
  315. static char *psmapfile = PSMAPFILE ;
  316. void
  317. getdefaults(s)
  318. char *s ;
  319. {
  320.    FILE *deffile ;
  321.    char PSname[300] ;
  322.    register char *p ;
  323.    int i, j ;
  324.    integer hsiz, vsiz ;
  325.    char *d = configpath ;
  326.    int canaddtopaper = 0 ;
  327.  
  328.    if (printer == NULL) {
  329.       if (s) {
  330.          strcpy(PSname, s) ;
  331.       } else {
  332. #ifndef VMCMS  /* IBM: VM/CMS - don't have home directory on VMCMS */
  333. #ifndef MVSXA
  334.          d = "~" ;
  335. #endif
  336. #endif  /* IBM: VM/CMS */
  337.          strcpy(PSname, DVIPSRC) ;
  338.       }
  339.    } else {
  340. #ifdef OS2
  341.       strcpy(PSname, printer) ;
  342.       strcat(PSname, ".cfg") ;
  343. #else
  344.       strcpy(PSname, "config.") ;
  345.       strcat(PSname, printer) ;
  346. #endif
  347.    }
  348.    if ((deffile=search(d,PSname,READ))!=NULL) {
  349.       while (fgets(was_inline, INLINE_SIZE, deffile)!=NULL) {
  350. /*
  351.  *   We need to get rid of the newline.
  352.  */
  353.        for (p=was_inline; *p; p++) ;
  354.        if (p > was_inline) *(p-1) = 0 ;
  355.        if (was_inline[0] != '@')
  356.           canaddtopaper = 0 ;
  357.        switch (was_inline[0]) {
  358. /*
  359.  *   Handling paper size information:
  360.  *
  361.  *      If line is empty, then we clear out the paper size information
  362.  *      we have so far.
  363.  *
  364.  *      If it is `@+', then we add to the current paper size info.
  365.  *
  366.  *      If it is `name hsize vsize', then we start a new definition.
  367.  */
  368. case '@' :
  369.          p = was_inline + 1 ;
  370.          while (*p && *p <= ' ') p++ ;
  371.          if (*p == 0) {
  372.             papsizes = 0 ; /* throw away memory */
  373.          } else if (*p == '+') {
  374.             if (canaddtopaper == 0)
  375.                error(
  376.       "can't have @+ in config file not immediately following a non-@ line") ;
  377.             else {
  378.                *(nextstring-1) = '\n' ;/* IBM: VM/CMS - changed 10 to "\n" */
  379.                p++ ;
  380.                while (*p && *p == ' ') p++ ;
  381.                strcpy(nextstring, p) ;
  382.                nextstring += strlen(p) + 1 ;
  383.             }
  384.          } else {
  385.             struct papsiz *ps ;
  386.             
  387.             ps = (struct papsiz *)mymalloc((integer)sizeof(struct papsiz)) ;
  388.             ps->next = papsizes ;
  389.             papsizes = ps ;
  390.             ps->name = p ;
  391.             while (*p && *p > ' ')
  392.                p++ ;
  393.             *p++ = 0 ;
  394.             ps->name = newstring(ps->name) ;
  395.             while (*p && *p <= ' ') p++ ;
  396.             handlepapersize(p, &hsiz, &vsiz) ;
  397.             ps->xsize = hsiz ;
  398.             ps->ysize = vsiz ;
  399.             ps->specdat = nextstring++ ;
  400.             canaddtopaper = 1 ;
  401.          }
  402.          break ;
  403. case 'a' :
  404.          dopprescan = (was_inline[1] != '0') ;
  405.          break ;
  406. case 'b':
  407. #ifdef SHORTINT
  408.          if (sscanf(was_inline+1, "%ld", &pagecopies) != 1) bad_config() ;
  409. #else
  410.          if (sscanf(was_inline+1, "%d", &pagecopies) != 1) bad_config() ;
  411. #endif
  412.          if (pagecopies < 1 || pagecopies > 1000)
  413.             bad_config() ;
  414.          break ;
  415. case 'm' :
  416. #ifdef SHORTINT
  417.          if (sscanf(was_inline+1, "%ld", &swmem) != 1) bad_config() ;
  418. #else   /* ~SHORTINT */
  419.          if (sscanf(was_inline+1, "%d", &swmem) != 1) bad_config() ;
  420. #endif  /* ~SHORTINT */
  421.          swmem += fontmem ; /* grab headers we've seen already */
  422.          break ;
  423. case 'M' :
  424.          mfmode = configstring(was_inline+1, 0) ;
  425.          break ;
  426. case 'o' :
  427.          oname = configstring(was_inline+1, 1) ;
  428.          if (*oname && oname[strlen(oname)-1] == ':')
  429.             sendcontrolD = 1 ; /* if we send to a device, *we* are spooler */
  430.          break ;
  431. case 'O' :
  432.          p = was_inline + 1 ;
  433.          handlepapersize(p, &hoff, &voff) ;
  434.          break ;
  435. #ifdef FONTLIB
  436. case 'L' : 
  437.          {
  438.             char tempname[300] ;
  439.             extern char *fliparse() ;
  440.             if (sscanf(was_inline+1, "%s", PSname) != 1) bad_config() ;
  441.             else {
  442.                flipath = getpath(fliparse(PSname,tempname), flipath);
  443.                fliname = newstring(tempname) ;
  444.             }
  445.      }
  446.          break ;
  447. #endif
  448. case 'T' : 
  449.          if (sscanf(was_inline+1, "%s", PSname) != 1) bad_config() ;
  450.          else tfmpath = getpath(PSname, tfmpath) ;
  451.          break ;
  452. case 'P' :
  453.          if (sscanf(was_inline+1, "%s", PSname) != 1) bad_config() ;
  454.          else pkpath = getpath(PSname, pkpath) ;
  455.          break ;
  456. case 'p' :
  457.          p = was_inline + 1 ;
  458.          while (*p && *p <= ' ')
  459.             p++ ;
  460.          if (*p == '+') {
  461.             if (sscanf(p+1, "%s", PSname) != 1) bad_config() ;
  462.             getpsinfo(PSname) ;
  463.          } else {
  464.             psmapfile = configstring(was_inline+1, 0) ;
  465.          }
  466.          break ;
  467. case 'V' : case 'v' :
  468.          if (sscanf(was_inline+1, "%s", PSname) != 1) bad_config() ;
  469.          else vfpath = getpath(PSname, vfpath) ;
  470.          break ;
  471. case 'S' :
  472.          if (sscanf(was_inline+1, "%s", PSname) != 1) bad_config() ;
  473.          else figpath = getpath(PSname, figpath) ;
  474.          break ;
  475. case 's':
  476.          safetyenclose = 1 ;
  477.          break ;
  478. case 'H' : 
  479.          if (sscanf(was_inline+1, "%s", PSname) != 1) bad_config() ;
  480.          else headerpath = getpath(PSname, headerpath) ;
  481.          break ;
  482. case '%': case ' ' : case '*' : case '#' : case ';' :
  483. case '=' : case 0 : case '\n' :
  484.          break ;
  485. case 'r' :
  486.          reverse = (was_inline[1] != '0') ;
  487.          break ;
  488. /*
  489.  *   This case is for last resort font scaling; I hate this, but enough
  490.  *   people have in no uncertain terms demanded it that I'll go ahead and
  491.  *   add it.
  492.  *
  493.  *   This line must have numbers on it, resolutions, to search for the
  494.  *   font as a last resort, and then the font will be scaled.  These
  495.  *   resolutions should be in increasing order.
  496.  *
  497.  *   For most machines, just `300' is sufficient here; on the NeXT,
  498.  *   `300 400' may be more appropriate.
  499.  */
  500. case 'R':
  501.          i = 0 ;
  502.          p = was_inline + 1 ;
  503.          while (*p) {
  504.             while (*p && *p <= ' ')
  505.                p++ ;
  506.             if ('0' <= *p && *p <= '9') {
  507.                j = 0 ;
  508.                while ('0' <= *p && *p <= '9')
  509.                   j = 10 * j + (*p++ - '0') ;
  510.                if (i > 0)
  511.                   if (lastresortsizes[i-1] > j) {
  512.                      error("last resort sizes (R) must be sorted") ;
  513.                      bad_config() ;
  514.                   }
  515.                lastresortsizes[i++] = j ;
  516.             } else {
  517.                if (*p == 0)
  518.                   break ;
  519.                error("! only numbers expected on `R' line in config!") ;
  520.             }
  521.          }
  522.          lastresortsizes[i] = 32000 ;
  523.          break ;
  524. case 'D' :
  525.          if (sscanf(was_inline+1, "%d", &actualdpi) != 1) bad_config() ;
  526.          if (actualdpi < 10 || actualdpi > 10000) bad_config() ;
  527.      vactualdpi = actualdpi;
  528.          break ;
  529. /*
  530.  *   Execute a command.  This can be dangerous, but can also be very useful.
  531.  */
  532. case 'E' :
  533. #ifdef SECURE
  534.          error("dvips was compiled with SECURE, which disables E in config") ;
  535. #else
  536.          (void)system(was_inline+1) ;
  537. #endif
  538.          break ;
  539. case 'K':
  540.          removecomments = (was_inline[1] != '0') ;
  541.          break ;
  542. case 'U':
  543.          nosmallchars = (was_inline[1] != '0') ;
  544.          break ;
  545. case 'W':
  546.          for (p=was_inline+1; *p && *p <= ' '; p++) ;
  547.          if (*p)
  548.             warningmsg = newstring(p) ;
  549.          else
  550.             warningmsg = 0 ;
  551.          break ;
  552. case 'X' :
  553.          if (sscanf(was_inline+1, "%d", &actualdpi) != 1) bad_config() ;
  554.          if (actualdpi < 10 || actualdpi > 10000) bad_config() ;
  555.          break ;
  556. case 'Y' :
  557.          if (sscanf(was_inline+1, "%d", &vactualdpi) != 1) bad_config() ;
  558.          if (vactualdpi < 10 || vactualdpi > 10000) bad_config() ;
  559.          break ;
  560. case 'x': case 'y':
  561.          if (sscanf(was_inline+1, "%d", &mag) != 1) bad_config() ;
  562.          overridemag = (was_inline[0] == 'x') ? 1 : -1 ;
  563.          break ;
  564. case 'e' :
  565.          if (sscanf(was_inline+1, "%d", &maxdrift) != 1) bad_config() ;
  566.          if (maxdrift < 0) bad_config() ;
  567.      vmaxdrift = maxdrift;
  568.          break ;
  569. case 'q' : case 'Q' :
  570.          quiet = (was_inline[1] != '0') ;
  571.          break ;
  572. case 'f' : case 'F' :
  573.          filter = (was_inline[1] != '0') ;
  574.          break ;
  575. case 'h' : 
  576.          if (sscanf(was_inline+1, "%s", PSname) != 1) bad_config() ;
  577.          else (void)add_header(PSname) ;
  578.          break ;
  579. case 'i' :
  580.          if (sscanf(was_inline+1, "%d", &maxsecsize) != 1)
  581.             maxsecsize = 0 ;
  582.          sepfiles = 1 ;
  583.          break ;
  584. case 'I':
  585.          noenv = (was_inline[1] != '0') ;
  586.          break ;
  587. case 'N' :
  588.          disablecomments = (was_inline[1] != '0') ;
  589.          break ;
  590. case 'Z' :
  591.          compressed = (was_inline[1] != '0') ;
  592.          break ;
  593. default:
  594.          bad_config() ;
  595.       }
  596.      }
  597.      (void)fclose(deffile) ;
  598.    } else {
  599.       if (printer)
  600.          error("! no such printer (can't find corresponding config file)") ;
  601.    }
  602. }
  603.  
  604. /*
  605.  *   If a character pointer is passed in, use that name; else, use the
  606.  *   default (possibly set) name.
  607.  */
  608. void getpsinfo(name)
  609. char *name ;
  610. {
  611.    FILE *deffile ;
  612.    register char *p ;
  613.    char *specinfo, *downloadinfo ;
  614.    char downbuf[200] ;
  615.  
  616.    if (name == 0)
  617.       name = psmapfile ;
  618.    if ((deffile=search(configpath, name, READ))!=NULL) {
  619.       while (fgets(was_inline, INLINE_SIZE, deffile)!=NULL) {
  620.          p = was_inline ;
  621.          if (*p > ' ' && *p != '*' && *p != '#' && *p != ';' && *p != '%') {
  622.             char *TeXname = NULL ;
  623.             char *PSname = NULL ;
  624.             specinfo = NULL ;
  625.             downloadinfo = NULL ;
  626.             downbuf[0] = 0 ;
  627.             while (*p) {
  628.                while (*p && *p <= ' ')
  629.                   p++ ;
  630.                if (*p) {
  631.                   if (*p == '"')
  632.                      specinfo = p + 1 ;
  633.                   else if (*p == '<') {
  634.                      if (downloadinfo) {
  635.                         strcat(downbuf, downloadinfo) ;
  636.                         strcat(downbuf, " ") ;
  637.                      }
  638.                      downloadinfo = p + 1 ;
  639.                   } else if (TeXname)
  640.                      PSname = p ;
  641.                   else
  642.                      TeXname = p ;
  643.                   if (*p == '"') {
  644.                      p++ ;
  645.                      while (*p != '"' && *p)
  646.                         p++ ;
  647.                   } else
  648.                      while (*p > ' ')
  649.                         p++ ;
  650.                   if (*p)
  651.                      *p++ = 0 ;
  652.                }
  653.             }
  654.             if (downloadinfo)
  655.                strcat(downbuf, downloadinfo) ;
  656.             if (TeXname) {
  657.                TeXname = newstring(TeXname) ;
  658.                specinfo = newstring(specinfo) ;
  659.                PSname = newstring(PSname) ;
  660.                downloadinfo = newstring(downbuf) ;
  661.                add_entry(TeXname, PSname, specinfo, downloadinfo) ;
  662.             }
  663.         }
  664.       }
  665.       (void)fclose(deffile) ;
  666.    }
  667.    checkstrings() ;
  668. }
  669. /*
  670.  *   Get environment variables! These override entries in ./config.h.
  671.  *   We substitute everything of the form ::, ^: or :$ with default,
  672.  *   so a user can easily build on to the existing paths.
  673.  */
  674. static char *getenvup(who, what)
  675. char *who, *what ;
  676. {
  677.    return getpath(getenv(who), what) ;
  678. }
  679. #ifdef SEARCH_SUBDIRECTORIES
  680. static char *concat3();
  681. #endif
  682. void checkenv(which)
  683. int which ;
  684. {
  685.    if (which) {
  686.       tfmpath = getenvup(FONTPATH, tfmpath) ;
  687.       vfpath = getenvup("VFFONTS", vfpath) ;
  688.       pictpath = getenvup("TEXPICTS", pictpath) ;
  689.       figpath = getenvup("TEXINPUTS", figpath) ;
  690.       headerpath = getenvup("DVIPSHEADERS", headerpath) ;
  691.       if (getenv("TEXPKS"))
  692.          pkpath = getenvup("TEXPKS", pkpath) ;
  693.       else if (getenv("TEXPACKED"))
  694.          pkpath = getenvup("TEXPACKED", pkpath) ;
  695.       else if (getenv("PKFONTS"))
  696.          pkpath = getenvup("PKFONTS", pkpath) ;
  697. #ifdef SEARCH_SUBDIRECTORIES
  698.       else if (getenv(FONTPATH))
  699.          pkpath = getenvup(FONTPATH, pkpath) ;
  700.       if (getenv ("TEXFONTS_SUBDIR"))
  701.          fontsubdirpath = getenvup ("TEXFONTS_SUBDIR", fontsubdirpath);
  702.       {
  703.          char pathsep[2] ;
  704.          char *do_subdir_path();
  705.          char *dirs = do_subdir_path (fontsubdirpath);
  706.          /* If the paths were in dynamic storage before, that memory is
  707.             wasted now.  */
  708.          pathsep[0] = PATHSEP ;
  709.          pathsep[1] = '\0' ;
  710.          tfmpath = concat3 (tfmpath, pathsep, dirs);
  711.          pkpath = concat3 (pkpath, pathsep, dirs);
  712.       }
  713. #endif
  714.    } else
  715.       configpath = getenvup("TEXCONFIG", configpath) ;
  716. }
  717.  
  718. #ifdef SEARCH_SUBDIRECTORIES
  719.  
  720. #include <sys/types.h>
  721. #include <sys/stat.h>
  722. #include <errno.h>
  723.  
  724. #ifdef SYSV
  725. #include <dirent.h>
  726. typedef struct dirent *directory_entry_type;
  727. #else
  728. #include <sys/dir.h>
  729. typedef struct direct *directory_entry_type;
  730. #endif
  731.  
  732. /* Declare the routine to get the current working directory.  */
  733.  
  734. #ifndef HAVE_GETCWD
  735. extern char *getwd ();
  736. #define getcwd(b, len)  ((b) ? getwd (b) : getwd (xmalloc (len)))
  737. #else
  738. #ifdef ANSI
  739. extern char *getcwd (char *, int);
  740. #else
  741. extern char *getcwd ();
  742. #endif /* not ANSI */
  743. #endif /* not HAVE_GETWD */
  744.  
  745. #if defined(SYSV) || defined(VMS) || defined(MSDOS)
  746. #define MAXPATHLEN (256)
  747. #else   /* ~SYSV */
  748. #include <sys/param.h>          /* for MAXPATHLEN */
  749. #endif
  750.  
  751. extern void exit() ;
  752. extern int chdir() ;
  753.  
  754. /* Memory operations: variants of malloc(3) and realloc(3) that just
  755.    give up the ghost when they fail.  */
  756.  
  757. extern char *realloc ();
  758.  
  759. char *
  760. xmalloc (size)
  761.   unsigned size;
  762. {
  763.   char *mem = malloc (size);
  764.   
  765.   if (mem == NULL)
  766.     {
  767.       fprintf (stderr, "! Cannot allocate %u bytes.\n", size);
  768.       exit (10);
  769.     }
  770.   
  771.   return mem;
  772. }
  773.  
  774.  
  775. char *
  776. xrealloc (ptr, size)
  777.   char *ptr;
  778.   unsigned size;
  779. {
  780.   char *mem = realloc (ptr, size);
  781.   
  782.   if (mem == NULL)
  783.     {
  784.       fprintf (stderr, "! Cannot reallocate %u bytes at %x.\n", size, ptr);
  785.       exit (10);
  786.     }
  787.     
  788.   return mem;
  789. }
  790.  
  791.  
  792. /* Return, in NAME, the next component of PATH, i.e., the characters up
  793.    to the next PATHSEP.  */
  794.    
  795. static void
  796. next_component (name, path)
  797.   char name[];
  798.   char **path;
  799. {
  800.   unsigned count = 0;
  801.   
  802.   while (**path != 0 && **path != PATHSEP)
  803.     {
  804.       name[count++] = **path;
  805.       (*path)++; /* Move further along, even between calls.  */
  806.     }
  807.   
  808.   name[count] = 0;
  809.   if (**path == PATHSEP)
  810.     (*path)++; /* Move past the delimiter.  */
  811. }
  812.  
  813.  
  814. #ifndef _POSIX_SOURCE
  815. #define S_ISDIR(m) ((m & S_IFMT) == S_IFDIR)
  816. #endif
  817.  
  818. /* Return true if FN is a directory or a symlink to a directory,
  819.    false if not. */
  820.  
  821. int
  822. is_dir (fn)
  823.   char *fn;
  824. {
  825.   struct stat stats;
  826.  
  827.   return stat (fn, &stats) == 0 && S_ISDIR (stats.st_mode);
  828. }
  829.  
  830.  
  831. static char *
  832. concat3 (s1, s2, s3)
  833.   char *s1, *s2, *s3;
  834. {
  835.   char *r = xmalloc (strlen (s1) + strlen (s2) + strlen (s3) + 1);
  836.   strcpy (r, s1);
  837.   strcat (r, s2);
  838.   strcat (r, s3);
  839.   return r;
  840. }
  841.  
  842.  
  843. /* DIR_LIST is the default list of directories (colon-separated) to
  844.    search.  We want to add all the subdirectories directly below each of
  845.    the directories in the path.
  846.      
  847.    We return the list of directories found.  */
  848.  
  849. char *
  850. do_subdir_path (dir_list)
  851.   char *dir_list;
  852. {
  853.   char *cwd;
  854.   unsigned len;
  855.   char *result = xmalloc ((unsigned)1);
  856.   char *temp = dir_list;
  857.   char dirsep[2] ;
  858.  
  859.   dirsep[0] = DIRSEP ;
  860.   dirsep[1] = '\0' ;
  861.  
  862.   /* Make a copy in writable memory.  */
  863.   dir_list = xmalloc (strlen (temp) + 1);
  864.   strcpy (dir_list, temp);
  865.   
  866.   *result = 0;
  867.  
  868.   /* Unfortunately, we can't look in the environment for the current
  869.      directory, because if we are running under a program (let's say
  870.      Emacs), the PWD variable might have been set by Emacs' parent
  871.      to the current directory at the time Emacs was invoked.  This
  872.      is not necessarily the same directory the user expects to be
  873.      in.  So, we must always call getcwd(3) or getwd(3), even though
  874.      they are slow and prone to hang in networked installations.  */
  875.   cwd = getcwd (NULL, MAXPATHLEN + 2);
  876.   if (cwd == NULL)
  877.     {
  878.       perror ("getcwd");
  879.       exit (errno);
  880.     }
  881.  
  882.   do
  883.     {
  884.       DIR *dir;
  885.       directory_entry_type e;
  886.       char dirname[MAXPATHLEN];
  887.  
  888.       next_component (dirname, &dir_list);
  889.  
  890.       /* All the `::'s should be gone by now, but we may as well make
  891.          sure `chdir' doesn't crash.  */
  892.       if (*dirname == 0) continue;
  893.  
  894.       /* By changing directories, we save a bunch of string
  895.          concatenations (and make the pathnames the kernel looks up
  896.          shorter).  */
  897.       if (chdir (dirname) != 0) continue;
  898.  
  899.       dir = opendir (".");
  900.       if (dir == NULL) continue;
  901.  
  902.       while ((e = readdir (dir)) != NULL)
  903.         {
  904.           if (is_dir (e->d_name) && strcmp (e->d_name, ".") != 0
  905.               && strcmp (e->d_name, "..") != 0)
  906.             {
  907.               char *found = concat3 (dirname, dirsep, e->d_name);
  908.  
  909.               result = xrealloc (result, strlen (result) + strlen (found) + 2);
  910.  
  911.               len = strlen (result);
  912.               if (len > 0)
  913.                 {
  914.                   result[len] = PATHSEP;
  915.                   result[len + 1] = 0;
  916.                 }
  917.               strcat (result, found);
  918.               free (found);
  919.             }
  920.         }
  921.       closedir (dir);
  922.  
  923.       /* Change back to the current directory, in case the path
  924.          contains relative directory names.  */
  925.       if (chdir (cwd) != 0)
  926.         {
  927.           perror (cwd);
  928.           exit (errno);
  929.         }
  930.     }
  931.   while (*dir_list != 0);
  932.   
  933.   return result;
  934. }
  935. #endif /* SEARCH_SUBDIRECTORIES */
  936.